Ligup
Unidades
Ligup
Quienes Somos
Ligup
Params | |
---|---|
0 |
|
1 |
|
2 |
|
3 |
|
4 |
|
5 |
|
Params | |
---|---|
0 |
|
1 |
|
2 |
|
3 |
|
4 |
|
5 |
|
6 |
|
7 |
|
8 |
|
9 |
|
10 |
|
11 |
|
12 |
|
13 |
|
Params | |
---|---|
0 |
|
1 |
|
2 |
|
3 |
|
4 |
|
5 |
|
6 |
|
7 |
|
8 |
|
9 |
|
10 |
|
11 |
|
12 |
|
13 |
|
14 |
|
15 |
|
16 |
|
17 |
|
18 |
|
19 |
|
20 |
|
21 |
|
Params | |
---|---|
0 |
|
1 |
|
2 |
|
3 |
|
4 |
|
5 |
|
6 |
|
7 |
|
8 |
|
9 |
|
10 |
|
11 |
|
12 |
|
13 |
|
14 |
|
15 |
|
16 |
|
17 |
|
18 |
|
19 |
|
20 |
|
21 |
|
Params | |
---|---|
0 |
|
1 |
|
2 |
|
3 |
|
4 |
|
5 |
|
6 |
|
7 |
|
8 |
|
9 |
|
10 |
|
11 |
|
12 |
|
13 |
|
14 |
|
15 |
|
Params | |
---|---|
0 |
|
1 |
|
2 |
|
3 |
|
4 |
|
5 |
|
6 |
|
7 |
|
8 |
|
9 |
|
10 |
|
11 |
|
12 |
|
13 |
|
14 |
|
15 |
|
16 |
|
Params | |
---|---|
0 |
|
1 |
|
2 |
|
3 |
|
4 |
|
5 |
|
6 |
|
7 |
|
8 |
|
9 |
|
10 |
|
11 |
|
12 |
|
13 |
|
14 |
|
15 |
|
16 |
|
Params | |
---|---|
0 |
|
1 |
|
2 |
|
3 |
|
4 |
|
5 |
|
6 |
|
7 |
|
8 |
|
9 |
|
10 |
|
11 |
|
12 |
|
13 |
|
14 |
|
15 |
|
16 |
|
17 |
|
18 |
|
19 |
|
20 |
|
21 |
|
22 |
|
23 |
|
24 |
|
Params | |
---|---|
0 |
|
1 |
|
2 |
|
3 |
|
4 |
|
5 |
|
6 |
|
7 |
|
8 |
|
9 |
|
10 |
|
11 |
|
12 |
|
13 |
|
14 |
|
15 |
|
16 |
|
Params | |
---|---|
0 |
|
1 |
|
2 |
|
3 |
|
4 |
|
5 |
|
6 |
|
7 |
|
8 |
|
9 |
|
10 |
|
11 |
|
12 |
|
13 |
|
14 |
|
15 |
|
16 |
|
17 |
|
Params | |
---|---|
0 |
|
1 |
|
2 |
|
3 |
|
4 |
|
5 |
|
6 |
|
7 |
|
8 |
|
9 |
|
10 |
|
11 |
|
12 |
|
13 |
|
14 |
|
15 |
|
16 |
|
Params | |
---|---|
0 |
|
1 |
|
2 |
|
3 |
|
4 |
|
5 |
|
6 |
|
7 |
|
8 |
|
9 |
|
10 |
|
11 |
|
12 |
|
13 |
|
14 |
|
15 |
|
16 |
|
Params | |
---|---|
0 |
|
1 |
|
Params | |
---|---|
0 |
|
1 |
|
select * from `customers` where `subdomain` = 'clientedemo' and `enabled` = '1' and `deleted_at` is null limit 1
2.79msdev22Params | |
---|---|
0 | clientedemo |
1 | 1 |
hints | Use SELECT * only if you need all columns from tableLIMIT without ORDER BY causes non-deterministic results, depending on the query execution plan |
select `key` from `customer_metadata_keys`
6.72msdev22Params | |
---|---|
hints | The SELECT statement has no WHERE clause and could examine many more rows than intended |
select * from `customer_templates` where `customer_templates`.`id` in ('2')
3.07msdev22Params | |
---|---|
0 | 2 |
hints | Use SELECT * only if you need all columns from table |
select `value`, `key` from `customer_metadatas` where `customer_id` = '45'
4.03msdev22Params | |
---|---|
0 | 45 |
select * from `sections` where `sections`.`customer_id` = '45' and `id` = '6567' and `draft` = '0' limit 1
2.78msdev22Params | |
---|---|
0 | 45 |
1 | 6567 |
2 | 0 |
hints | Use SELECT * only if you need all columns from tableLIMIT without ORDER BY causes non-deterministic results, depending on the query execution plan |
select * from `documents` where `documents`.`deleted_at` is null and `entity_type` = 'Section' and `entity_id` = '6567' and `public` = '1' order by `id` desc
38.01msdev22Params | |
---|---|
0 | Section |
1 | 6567 |
2 | 1 |
hints | Use SELECT * only if you need all columns from table |
select * from `section_types` where `section_types`.`id` = '1' limit 1
2.71msdev22Params | |
---|---|
0 | 1 |
hints | Use SELECT * only if you need all columns from tableLIMIT without ORDER BY causes non-deterministic results, depending on the query execution plan |
select * from `widget_types` where `key` = 'popup' limit 1
2.65msdev22Params | |
---|---|
0 | popup |
hints | Use SELECT * only if you need all columns from tableLIMIT without ORDER BY causes non-deterministic results, depending on the query execution plan |
select `widgets`.* from `widgets` inner join `widget_placements` on `widget_placements`.`widget_id` = `widgets`.`id` where `widgets`.`customer_id` = '45' and `widget_placements`.`owner_id` = '6567' and `widget_placements`.`owner_type` = 'Section' and `widget_placements`.`v_order` is not null and `widgets`.`widget_type_id` != '7' and `widget_placements`.`public` = '1' order by `widget_placements`.`v_order` asc
73.1msdev22Params | |
---|---|
0 | 45 |
1 | 6567 |
2 | Section |
3 | 7 |
4 | 1 |
hints | Use SELECT * only if you need all columns from tableThe != operator is not standard. Use the <> operator to test for inequality instead. |
select `widgets`.* from `widgets` inner join `widget_placements` on `widget_placements`.`widget_id` = `widgets`.`id` where `widgets`.`customer_id` = '45' and `widget_placements`.`owner_id` = '6567' and `widget_placements`.`owner_type` = 'Section' and `widgets`.`widget_type_id` = '7' and `widget_placements`.`public` = '1' order by `widgets`.`updated_at` asc
2.81msdev22Params | |
---|---|
0 | 45 |
1 | 6567 |
2 | Section |
3 | 7 |
4 | 1 |
hints | Use SELECT * only if you need all columns from table |
select * from `widgets` where `widgets`.`customer_id` = '45' and `name` = 'main-header' limit 1
2.81msdev22Params | |
---|---|
0 | 45 |
1 | main-header |
hints | Use SELECT * only if you need all columns from tableLIMIT without ORDER BY causes non-deterministic results, depending on the query execution plan |
select * from `widgets` where `widgets`.`customer_id` = '45' and `name` = 'header-logo' limit 1
2.71msdev22Params | |
---|---|
0 | 45 |
1 | header-logo |
hints | Use SELECT * only if you need all columns from tableLIMIT without ORDER BY causes non-deterministic results, depending on the query execution plan |
select * from `widgets` where `widgets`.`customer_id` = '45' and `name` = 'header-item-1' limit 1
2.74msdev22Params | |
---|---|
0 | 45 |
1 | header-item-1 |
hints | Use SELECT * only if you need all columns from tableLIMIT without ORDER BY causes non-deterministic results, depending on the query execution plan |
select * from `widgets` where `widgets`.`customer_id` = '45' and `name` = 'header-item-2' limit 1
2.51msdev22Params | |
---|---|
0 | 45 |
1 | header-item-2 |
hints | Use SELECT * only if you need all columns from tableLIMIT without ORDER BY causes non-deterministic results, depending on the query execution plan |
select * from `widgets` where `widgets`.`customer_id` = '45' and `name` = 'header-item-3' limit 1
2.68msdev22Params | |
---|---|
0 | 45 |
1 | header-item-3 |
hints | Use SELECT * only if you need all columns from tableLIMIT without ORDER BY causes non-deterministic results, depending on the query execution plan |
select * from `widgets` where `widgets`.`customer_id` = '45' and `name` = 'header-last-row' limit 1
2.66msdev22Params | |
---|---|
0 | 45 |
1 | header-last-row |
hints | Use SELECT * only if you need all columns from tableLIMIT without ORDER BY causes non-deterministic results, depending on the query execution plan |
select `id`, `title`, `href`, `father`, `public`, `type`, `configuration`, `section_type_id` from `sections` where `sections`.`customer_id` = '45' and `world` = 'home' and `parent_id` is null and `spot` = 'web' and `public` = '1' and `draft` = '0' order by `order` asc
2.98msdev22Params | |
---|---|
0 | 45 |
1 | home |
2 | web |
3 | 1 |
4 | 0 |
select * from `section_types` where `section_types`.`id` in ('1', '4')
2.6msdev22Params | |
---|---|
0 | 1 |
1 | 4 |
hints | Use SELECT * only if you need all columns from table |
select * from `sections` where `sections`.`customer_id` = '45' and `sections`.`parent_id` in ('3711', '1328', '1330', '1331', '3264', '3584', '3585', '3586', '3587', '3588', '6567') order by `order` asc
3.81msdev22Params | |
---|---|
0 | 45 |
1 | 3711 |
2 | 1328 |
3 | 1330 |
4 | 1331 |
5 | 3264 |
6 | 3584 |
7 | 3585 |
8 | 3586 |
9 | 3587 |
10 | 3588 |
11 | 6567 |
hints | Use SELECT * only if you need all columns from table |
select * from `section_types` where `section_types`.`id` in ('1')
2.42msdev22Params | |
---|---|
0 | 1 |
hints | Use SELECT * only if you need all columns from table |
select * from `customer_module_groups` inner join `module_groups` on `module_group_id` = `module_groups`.`id` where `customer_id` = '45' and `has_home` = '1' and `key` != 'general' order by `name` asc
3.28msdev22Params | |
---|---|
0 | 45 |
1 | 1 |
2 | general |
hints | Use SELECT * only if you need all columns from tableThe != operator is not standard. Use the <> operator to test for inequality instead. |
select * from `customer_module_groups` inner join `module_groups` on `module_group_id` = `module_groups`.`id` where `customer_id` = '45' and `name` = 'Actividades' limit 1
2.64msdev22Params | |
---|---|
0 | 45 |
1 | Actividades |
hints | Use SELECT * only if you need all columns from tableLIMIT without ORDER BY causes non-deterministic results, depending on the query execution plan |
select * from `widget_types` where `key` = 'main-header' limit 1
2.56msdev22Params | |
---|---|
0 | main-header |
hints | Use SELECT * only if you need all columns from tableLIMIT without ORDER BY causes non-deterministic results, depending on the query execution plan |
select * from `widgets` where `widgets`.`customer_id` = '45' and `widget_type_id` = '6' order by `updated_at` desc limit 1
2.66msdev22Params | |
---|---|
0 | 45 |
1 | 6 |
hints | Use SELECT * only if you need all columns from table |
select * from `widgets` where `widgets`.`customer_id` = '45' and `name` = 'hamburger-menu-widget' limit 1
2.98msdev22Params | |
---|---|
0 | 45 |
1 | hamburger-menu-widget |
hints | Use SELECT * only if you need all columns from tableLIMIT without ORDER BY causes non-deterministic results, depending on the query execution plan |
select * from `module_groups` where `module_groups`.`id` = '2' limit 1
2.52msdev22Params | |
---|---|
0 | 2 |
hints | Use SELECT * only if you need all columns from tableLIMIT without ORDER BY causes non-deterministic results, depending on the query execution plan |
select * from `module_groups` where `module_groups`.`id` = '6' limit 1
2.39msdev22Params | |
---|---|
0 | 6 |
hints | Use SELECT * only if you need all columns from tableLIMIT without ORDER BY causes non-deterministic results, depending on the query execution plan |
select * from `module_groups` where `module_groups`.`id` = '3' limit 1
2.4msdev22Params | |
---|---|
0 | 3 |
hints | Use SELECT * only if you need all columns from tableLIMIT without ORDER BY causes non-deterministic results, depending on the query execution plan |
select `id`, `title`, `href`, `father`, `public`, `type`, `configuration`, `section_type_id` from `sections` where `sections`.`customer_id` = '45' and `world` = 'root' and `parent_id` is null and `spot` = 'web' and `public` = '1' and `draft` = '0' order by `order` asc
2.92msdev22Params | |
---|---|
0 | 45 |
1 | root |
2 | web |
3 | 1 |
4 | 0 |
select * from `module_groups` where `module_groups`.`id` = '2' limit 1
2.51msdev22Params | |
---|---|
0 | 2 |
hints | Use SELECT * only if you need all columns from tableLIMIT without ORDER BY causes non-deterministic results, depending on the query execution plan |
select * from `module_groups` where `module_groups`.`id` = '6' limit 1
2.42msdev22Params | |
---|---|
0 | 6 |
hints | Use SELECT * only if you need all columns from tableLIMIT without ORDER BY causes non-deterministic results, depending on the query execution plan |
select * from `module_groups` where `module_groups`.`id` = '3' limit 1
2.38msdev22Params | |
---|---|
0 | 3 |
hints | Use SELECT * only if you need all columns from tableLIMIT without ORDER BY causes non-deterministic results, depending on the query execution plan |
select * from `widgets` where `widgets`.`customer_id` = '45' and `widgets`.`id` = '324' limit 1
2.53msdev22Params | |
---|---|
0 | 45 |
1 | 324 |
hints | Use SELECT * only if you need all columns from tableLIMIT without ORDER BY causes non-deterministic results, depending on the query execution plan |
Text